b02f5a2c4ac8f3f257b0921b079631b3bf4f5fd3,src/edu/stanford/nlp/pipeline/StanfordCoreNLP.java,StanfordCoreNLP,StanfordCoreNLP,#String#boolean#,153
Before Change
if (props == null) {
throw new RuntimeIOException("ERROR: cannot find properties file \"" + propsFileNamePrefix + "\" in the classpath!");
}
construct(props, enforceRequirements, getAnnotatorImplementations());
}
//
After Change
if (props == null) {
throw new RuntimeIOException("ERROR: cannot find properties file \"" + propsFileNamePrefix + "\" in the classpath!");
}
AnnotatorImplementations impl = getAnnotatorImplementations();
construct(props, enforceRequirements, impl, getDefaultAnnotatorPool(props, impl));
}
//